Java Math - Search
Open links in new tab
  1. The Java Math class provides a wide range of methods for performing mathematical operations. These methods are static, meaning they can be called directly on the Math class without creating an instance of it. Here are some of the most commonly used methods:

    Basic Math Methods

    • abs(x): Returns the absolute value of x.

    • max(x, y): Returns the larger of two values.

    • min(x, y): Returns the smaller of two values.

    • round(x): Rounds the decimal number to the nearest integer.

    • sqrt(x): Returns the square root of x.

    • cbrt(x): Returns the cube root of x.

    • pow(x, y): Returns x raised to the power of y.

    • signum(x): Returns the sign of x.

    • ceil(x): Returns the smallest integer greater than or equal to x.

    • floor(x): Returns the largest integer less than or equal to x.

    Example:

    public class MathExample {
    public static void main(String[] args) {
    double x = -28.0;
    double y = 4.0;

    System.out.println("Absolute value of x: " + Math.abs(x));
    System.out.println("Maximum of x and y: " + Math.max(x, y));
    System.out.println("Square root of y: " + Math.sqrt(y));
    System.out.println("x raised to the power y: " + Math.pow(x, y));
    }
    }
    Feedback
    Kizdar net | Kizdar net | Кыздар Нет
  1. Some results have been removed